home *** CD-ROM | disk | FTP | other *** search
/ Champak 33 / Volume 33 - JOGO DISK .iso / Games / snowboard.swf / scripts / frame_7 / PlaceObject2_308_32 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Text File  |  2007-01-15  |  338b  |  19 lines

  1. onClipEvent(enterFrame){
  2.    if(this.hitTest(_root.player))
  3.    {
  4.       var1 = 1;
  5.    }
  6.    if(var1 == 1)
  7.    {
  8.       _Y = _Y + yspeed;
  9.       yspeed += grav;
  10.    }
  11.    if(this.spikey.hitTest(_root.player) && hit != 1)
  12.    {
  13.       _root.shake.play();
  14.       _root.player.xspeed = 0;
  15.       hit = 1;
  16.       _root.hud.lives--;
  17.    }
  18. }
  19.